home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / Speech Synthesis Manager / Sample Code / SpeakToMe / SpeakToMe.make < prev    next >
Encoding:
Text File  |  1996-05-21  |  1.1 KB  |  45 lines  |  [TEXT/MPS ]

  1. #   File:       SpeakToMe.make
  2. #   Target:     SpeakToMe
  3. #   Sources:    SpeakToMe.c
  4. #               SpeakToMe.r
  5. #   Created:    Monday, May 20, 1996 05:33:37 PM
  6. #   Notes:        Builds a "Fat" binary which runs on both 68K and PowerPC
  7.  
  8.  
  9. POWERPCOBJECTS = ∂
  10.         SpeakToMe.o ∂
  11.  
  12. 68KOBJECTS = ∂
  13.         SpeakToMe.c.o ∂
  14.  
  15.  
  16. SpeakToMe  ƒƒ SpeakToMe.make SpeakToMe.r
  17.     Rez SpeakToMe.r -append -o SpeakToMe
  18.  
  19. SpeakToMe ƒƒ SpeakToMe.make  {POWERPCOBJECTS}
  20.     PPCLink  ∂
  21.         {POWERPCOBJECTS} ∂
  22.         "{PPCLibraries}"InterfaceLib.xcoff ∂
  23.         "{PPCLibraries}"SpeechLib.xcoff ∂
  24.         "{PPCLibraries}"StdCLib.xcoff ∂
  25.         "{PPCLibraries}"PPCCRuntime.o ∂
  26.         "{PPCLibraries}"PPCSIOW.o ∂
  27.         -main __start ∂
  28.         -o SpeakToMe.xcoff
  29.     makePEF SpeakToMe.xcoff -o SpeakToMe ∂
  30.         -l InterfaceLib.xcoff=InterfaceLib ∂
  31.         -l StdCLib.xcoff=StdCLib ∂
  32.         -ft APPL -fc '????'
  33. SpeakToMe.o ƒ SpeakToMe.make SpeakToMe.c
  34.      PPCC -w conformance -appleext on  SpeakToMe.c -o SpeakToMe.o
  35.  
  36. SpeakToMe ƒƒ SpeakToMe.make  {68KOBJECTS}
  37.     Link -t APPL -c '????' ∂
  38.         {68KOBJECTS} ∂
  39.         "{CLibraries}"StdClib.o ∂
  40.          "{Libraries}"Runtime.o ∂
  41.          "{Libraries}"Interface.o ∂
  42.         -o SpeakToMe
  43. SpeakToMe.c.o ƒ SpeakToMe.make SpeakToMe.c
  44.      C -r  SpeakToMe.c
  45.